home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Semaphore / Source / CSemaphorePicture.h < prev   
Encoding:
Text File  |  2000-06-23  |  340 b   |  15 lines

  1. // CSemaphorePicture.h
  2.  
  3. #include <LPictureControl.h>
  4.  
  5. class CSemaphorePicture: public LPicture, public LCommander {
  6.     public:
  7.             enum { class_ID = FOUR_CHAR_CODE('Sema') };
  8.     
  9.                             CSemaphorePicture(
  10.                                 LStream*        inStream);
  11.     virtual                ~CSemaphorePicture();
  12.     
  13.     virtual Boolean    HandleKeyPress(
  14.                                 const EventRecord&    inKeyEvent);
  15. };